home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / www / phpmyadmin / querywindow.php < prev    next >
PHP Script  |  2004-09-24  |  17KB  |  278 lines

  1. <?php
  2. /* $Id: querywindow.php,v 2.15 2004/08/12 15:13:19 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * Gets the variables sent to this script, retains the db name that may have
  8.  * been defined as startup option and include a core library
  9.  */
  10. require_once('./libraries/grab_globals.lib.php');
  11. if (!empty($db)) {
  12.     $db_start = $db;
  13. }
  14.  
  15.  
  16. /**
  17.  * Gets a core script and starts output buffering work
  18.  */
  19. require_once('./libraries/common.lib.php');
  20. require_once('./libraries/ob.lib.php');
  21. if ($cfg['OBGzip']) {
  22.     $ob_mode = PMA_outBufferModeGet();
  23.     if ($ob_mode) {
  24.         PMA_outBufferPre($ob_mode);
  25.     }
  26. }
  27.  
  28. require_once('./libraries/relation.lib.php');
  29. $cfgRelation = PMA_getRelationsParam();
  30.  
  31. /**
  32.  * Get the list and number of available databases.
  33.  * Skipped if no server selected: in this case no database should be displayed
  34.  * before the user choose among available ones at the welcome screen.
  35.  */
  36. if ($server > 0) {
  37.     PMA_availableDatabases(); // this function is defined in "common.lib.php"
  38. } else {
  39.     $num_dbs = 0;
  40. }
  41.  
  42. // garvin: For re-usability, moved http-headers and stylesheets
  43. // to a seperate file. It can now be included by header.inc.php,
  44. // queryframe.php, querywindow.php.
  45.  
  46. require_once('./libraries/header_http.inc.php');
  47. require_once('./libraries/header_meta_style.inc.php');
  48. ?>
  49.  
  50. <script type="text/javascript" language="javascript">
  51. <!--
  52. function query_auto_commit() {
  53.     document.sqlform.submit();
  54. }
  55.  
  56. function query_tab_commit(tab) {
  57.     document.querywindow.querydisplay_tab.value = tab;
  58.     document.querywindow.submit();
  59.     return false;
  60. }
  61.  
  62. // js form validation stuff
  63. /**/
  64. var errorMsg0   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
  65. var errorMsg1   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
  66. var errorMsg2   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
  67. var noDropDbMsg = '<?php echo((!$GLOBALS['cfg']['AllowUserDropDatabase']) ? str_replace('\'', '\\\'', $GLOBALS['strNoDropDatabases']) : ''); ?>';
  68. var confirmMsg  = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDoYouReally']) : ''); ?>';
  69. /**/
  70. //-->
  71. </script>
  72. <script src="libraries/functions.js" type="text/javascript" language="javascript"></script>
  73. </head>
  74.  
  75. <body bgcolor="<?php echo ($cfg['QueryFrameJS'] ? $cfg['LeftBgColor'] : $cfg['RightBgColor']); ?>">
  76.  
  77. <?php
  78. if ($cfg['QueryFrameJS'] && !isset($no_js)) {
  79.     $querydisplay_tab = (isset($querydisplay_tab) ? $querydisplay_tab : $cfg['QueryWindowDefTab']);
  80.  
  81.     if ($cfg['LightTabs']) {
  82.         echo ' ';
  83.     } else {
  84.     echo '<table border="0" cellspacing="0" cellpadding="0" width="100%">' . "\n"
  85.        . '    <tr>' . "\n"
  86.        . '        <td class="nav" align="left" nowrap="nowrap" valign="bottom">'
  87.        . '            <table border="0" cellpadding="0" cellspacing="0"><tr>'
  88.        . '                <td nowrap="nowrap"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  . '" width="2" height="1" border="0" alt="" /></td>'
  89.        . '                <td class="navSpacer"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  .'" width="1" height="1" border="0" alt="" /></td>';
  90.     }
  91.     echo "\n";
  92.     echo PMA_printTab(($GLOBALS['cfg']['PropertiesIconic'] != false ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_sql.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strSQL.'" />' : '') . $strSQL, '#', '', 'onclick="javascript:query_tab_commit(\'sql\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'sql' ? TRUE : FALSE));
  93.     echo PMA_printTab(($GLOBALS['cfg']['PropertiesIconic'] != false ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_import.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strImportFiles.'" />' : '') . $strImportFiles, '#', '', 'onclick="javascript:query_tab_commit(\'files\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'files' ? TRUE : FALSE));
  94.     echo PMA_printTab($strQuerySQLHistory, '#', '', 'onclick="javascript:query_tab_commit(\'history\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'history' ? TRUE : FALSE));
  95.  
  96.     if ($cfg['QueryWindowDefTab'] == 'full') {
  97.         echo PMA_printTab($strAll, '#', '', 'onclick="javascript:query_tab_commit(\'full\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'full' ? TRUE : FALSE));
  98.     }
  99.  
  100.     if (!$cfg['LightTabs']) {
  101.     echo '                <td nowrap="nowrap"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  . '" width="2" height="1" border="0" alt="" /></td>'
  102.        . '            </tr></table>' . "\n"
  103.        . '        </td>' . "\n"
  104.        . '    </tr>' . "\n"
  105.        . '</table>';
  106.     } else {
  107.         echo '<br />';
  108.     }
  109. } else {
  110.     $querydisplay_tab = 'full';
  111. }
  112.  
  113. ?>
  114. <br />
  115.  
  116. <?php
  117. if ($cfg['PropertiesIconic'] == true) {
  118.     // We need to copy the value or else the == 'both' check will always return true
  119.     $propicon = (string)$cfg['PropertiesIconic'];
  120.  
  121.     if ($propicon == 'both') {
  122.         $iconic_spacer = '<div class="nowrap">';
  123.     } else {
  124.         $iconic_spacer = '';
  125.     }
  126.  
  127.     $titles['Change']        = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_edit.png" alt="' . $strChange . '" title="' . $strChange . '" border="0" />';
  128.  
  129.     if ($propicon == 'both') {
  130.         $titles['Change']        .= ' ' . $strChange . ' </div>';
  131.     }
  132. } else {
  133.     $titles['Change']        = $strChange;
  134. }
  135.  
  136. // Hidden forms and query frame interaction stuff
  137. if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
  138.  
  139.     $input_query_history = array();
  140.     $sql_history = array();
  141.     $dup_sql = array();
  142.  
  143.     if (isset($query_history_latest) && isset($query_history_latest_db) && $query_history_latest != '' && $query_history_latest_db != '') {
  144.         if ($cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
  145.             PMA_setHistory((isset($query_history_latest_db) ? $query_history_latest_db : ''), (isset($query_history_latest_table) ? $query_history_latest_table : ''), $cfg['Server']['user'], $query_history_latest);
  146.         }
  147.  
  148.         $input_query_history[] = '<input type="hidden" name="query_history[]" value="' . $query_history_latest . '" />';
  149.         $input_query_history[] = '<input type="hidden" name="query_history_db[]" value="' . htmlspecialchars($query_history_latest_db) . '" />';
  150.         $input_query_history[] = '<input type="hidden" name="query_history_table[]" value="' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '" />';
  151.  
  152.         $sql_history[] = '<li>'
  153.                        . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($query_history_latest))) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
  154.                        . ' <a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($query_history_latest))) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($query_history_latest_db) . '] ' . urldecode($query_history_latest) . '</a>'
  155.                        . '</li>' . "\n";
  156.  
  157.         $sql_query = urldecode($query_history_latest);
  158.         $db = $query_history_latest_db;
  159.         $table = $query_history_latest_table;
  160.         $dup_sql[$query_history_latest] = true;
  161.     } elseif (isset($query_history_latest) && $query_history_latest != '') {
  162.         $sql_query = urldecode($query_history_latest);
  163.     }
  164.  
  165.     if (isset($sql_query)) {
  166.         $show_query = 1;
  167.     }
  168.  
  169.     if ($cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
  170.  
  171.         $temp_history = PMA_getHistory($cfg['Server']['user']);
  172.         if (is_array($temp_history) && count($temp_history) > 0) {
  173.             foreach ($temp_history AS $history_nr => $history_array) {
  174.                 if (!isset($dup_sql[$history_array['sqlquery']])) {
  175.                     $sql_history[] = '<li>'
  176.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($history_array['sqlquery']))) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
  177.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($history_array['sqlquery']))) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($history_array['db']) . '] ' . urldecode($history_array['sqlquery']) . '</a>'
  178.                                    . '</li>' . "\n";
  179.                     $dup_sql[$history_array['sqlquery']] = true;
  180.                 }
  181.             }
  182.         }
  183.  
  184.     } else {
  185.  
  186.         if (isset($query_history) && is_array($query_history)) {
  187.             $current_index = count($query_history);
  188.             foreach ($query_history AS $query_no => $query_sql) {
  189.                 if (!isset($dup_sql[$query_sql])) {
  190.  
  191.                     $input_query_history[] = '<input type="hidden" name="query_history[]" value="' . $query_sql . '" />';
  192.                     $input_query_history[] = '<input type="hidden" name="query_history_db[]" value="' . htmlspecialchars($query_history_db[$query_no]) . '" />';
  193.                     $input_query_history[] = '<input type="hidden" name="query_history_table[]" value="' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '" />';
  194.  
  195.                     $sql_history[] = '<li>'
  196.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . htmlspecialchars($query_sql) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
  197.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . htmlspecialchars($query_sql) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($query_history_db[$query_no]) . '] ' . urldecode($query_sql) . '</a>'
  198.                                    . '</li>' . "\n";
  199.                     $dup_sql[$query_sql] = true;
  200.                 } // end if check if this item exists
  201.             } // end while print history
  202.         } // end if history exists
  203.  
  204.     } // end if DB-based history
  205. }
  206.  
  207. $url_query = PMA_generate_common_url(isset($db) ? $db : '', isset($table) ? $table : '');
  208. if (!isset($goto)) {
  209.     $goto = '';
  210. }
  211.  
  212. require_once './libraries/bookmark.lib.php';
  213. $is_inside_querywindow = TRUE;
  214. require './tbl_query_box.php';
  215.  
  216. // Hidden forms and query frame interaction stuff
  217. if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
  218.     if (isset($auto_commit) && $auto_commit == 'true') {
  219.     ?>
  220.         <script type="text/javascript" language="javascript">
  221.         query_auto_commit();
  222.         </script>
  223.     <?php
  224.     }
  225.  
  226.     if (isset($sql_history) && isset($querydisplay_tab) && ($querydisplay_tab == 'history' || $querydisplay_tab == 'full') && is_array($sql_history) && count($sql_history) > 0) {
  227.     ?>
  228.         <?php echo $strQuerySQLHistory . ':<br /><ul>' . implode('', $sql_history) . '</ul>'; ?>
  229.     <?php
  230.     }
  231. ?>
  232. <form action="querywindow.php" method="post" name="querywindow">
  233. <?php
  234.     echo PMA_generate_common_hidden_inputs('', '');
  235.     if (count($input_query_history) > 0) {
  236.         echo implode("\n", $input_query_history);
  237.     }
  238. ?>
  239.     <input type="hidden" name="db" value="<?php echo (empty($db) ? '' : htmlspecialchars($db)); ?>" />
  240.     <input type="hidden" name="table" value="<?php echo (empty($table) ? '' : htmlspecialchars($table)); ?>" />
  241.  
  242.     <input type="hidden" name="query_history_latest" value="" />
  243.     <input type="hidden" name="query_history_latest_db" value="" />
  244.     <input type="hidden" name="query_history_latest_table" value="" />
  245.  
  246.     <input type="hidden" name="previous_db" value="<?php echo htmlspecialchars($db); ?>" />
  247.  
  248.     <input type="hidden" name="auto_commit" value="false" />
  249.     <input type="hidden" name="querydisplay_tab" value="<?php echo $querydisplay_tab; ?>" />
  250. </form>
  251. <?php
  252. }
  253. ?>
  254.  
  255. </body>
  256. </html>
  257.  
  258. <?php
  259. /**
  260.  * Close MySql connections
  261.  */
  262. if (isset($dbh) && $dbh) {
  263.     PMA_DBI_close($dbh);
  264. }
  265. if (isset($userlink) && $userlink) {
  266.     PMA_DBI_close($userlink);
  267. }
  268.  
  269.  
  270. /**
  271.  * Sends bufferized data
  272.  */
  273. if (isset($cfg['OBGzip']) && $cfg['OBGzip']
  274.     && isset($ob_mode) && $ob_mode) {
  275.      PMA_outBufferPost($ob_mode);
  276. }
  277. ?>
  278.